std::forward_list::before_begin, std::forward_list::cbefore_begin
From Cppreference
< cpp | container | forward list
| iterator before_begin();
| (C++0x feature) | |
| const_iterator before_begin() const;
| (C++0x feature) | |
| const_iterator cbefore_begin() const;
| (C++0x feature) | |
Returns an iterator to the element before the first element of the container. This element acts as a placeholder, attempting to access it results in undefined behavior. The only usage cases are in functions insert_after(), emplace_after(), erase_after()
Contents |
Parameters
(none)
Return value
iterator to the element before the first element
Complexity
constant
See also
| returns an iterator to the beginning (public member function) | |
| returns an iterator to the end (public member function) | |